for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import AbstractDropdownDispatcher from './AbstractDropdownDispatcher';
import { svgIcon } from '../MDI';
class PageMacroDropdownDispatcher extends AbstractDropdownDispatcher {
getMenuItem(schema) {
return super.getMenuItem(schema, {
icon: svgIcon('settings-outline'),
label: LANG.plugins.prosemirror['label:settings'],
LANG
/** global: LANG */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
});
}
export default PageMacroDropdownDispatcher;
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.